projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52d2a69
)
* lisp/htmlfontify.el (hfy-which-etags): Fix it.
author
Glenn Morris
<rgm@gnu.org>
Wed, 13 Dec 2017 18:55:29 +0000
(13:55 -0500)
committer
Glenn Morris
<rgm@gnu.org>
Wed, 13 Dec 2017 18:55:29 +0000
(13:55 -0500)
lisp/htmlfontify.el
patch
|
blob
|
history
diff --git
a/lisp/htmlfontify.el
b/lisp/htmlfontify.el
index 0c5a2477e5d51d7867fac97a553c9fb0f328aad2..aa7cf430a4df355a1d71cf505c5bf5253e3284a3 100644
(file)
--- a/
lisp/htmlfontify.el
+++ b/
lisp/htmlfontify.el
@@
-370,8
+370,8
@@
commands in `hfy-etags-cmd-alist'."
(when (eq (call-process hfy-etags-bin nil t nil "--version") 0)
(goto-char (point-min))
(cond
- ((
looking-at-p "exube"
) "exuberant ctags")
- ((
looking-at-p "GNU E"
) "emacs etags")))
+ ((
search-forward "exube" nil t
) "exuberant ctags")
+ ((
search-forward "GNU E" nil t
) "emacs etags")))
;; Return nil if the etags binary isn't executable (Bug#25468).
(file-error nil))))